{% load i18n %}
{% load markup %}
{% with field_count=table.headers|length row_count=table.rows|length %}
{% block table_headers %}
{% join '_' table.uid 'order_by' as order_by_key %}
{% for h in table.headers %}
{% block table_header %}
{% endblock %}
{% if row_count %}
{{ h.name|capfirst }}
{% if h.attname in table.order_by %}
▴
{% else %}
▾
{% endif %}
{% endblock %}
{% endfor %}
{% trans "Actions" %}